Chapter 1.01 part 2 If you see MTH/MTHT next to a problem, that means it is recommended just for Math majors/minors (MTH) and secondary-ed-math people (MTHT). #6 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #57 #58 #59 #60 #61 #62 #63 #64 #65 #66 #67 #68 #79 MTH/MTHT #80 MTH/MTHT QA: on page 13 section B, they say "a [mathematical model] is a function with an explicit formula . . ."; would you say that a math model has to be an explicit formula? QB: For the postage cost problem on page 13, does 88+17*floor(w) accurately model the relationship between weight and cost? QC: (WEP) related to Example 9 and #67: first, define max(thing 1, thing2) to be the larger of the two things, so max(3,7) is 7 and max(3,-7) is 3, for example. There's an Excel function that works exactly like this, cleverly called MAX(). On a TI-83/84, you can use MATH->NUM->max ; note this is different than MATH->Math->fMax. i) sketch max(0,x); ii) sketch max(0,x-c); iii) sketch 0.10*max(0,x-10000); this is the way a simple flat-tax of 10% on income above $10k would work. iv) sketch 40+0.21*max(0,x-500); this is the way a cell phone bill of $40 for 500 minutes, plus 21 cents/minute above that would work. v) sketch 0.10*max(0,x-10000)+0.08*max(0,x-30000); this would add a 2nd bracket to the "flat tax" in part (iii) QD: (WEP) related to Example 9: i) Explain how max(0,1-abs(x-1)) reproduces the graph in example 9; ii) explain how x-2*max(0,x-1)+1*max(0,x-2) reproduces the graph in example 9; iii) If either of these doesn't exactly reproduce the graph in example 9, explain how to change it so it does.